/* Contact Section */

body {
    background-color: var(--light-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 164%;
    letter-spacing: 0.32px;
    color: var(--dark-color);
    margin: 0;
    background-color: #ececec;
  }

.contact-containerc {
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    position: relative;
    top: 50px;
}

/* Heading */
.contact-containerc h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.contact-containerc p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Contact Info */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* Info Box */
.info-boxc {
    background: #4f5357;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-boxc:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.info-boxc i {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-boxc a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

.map-container{
    position: relative ;
    top: 50px;
    padding-bottom: 50px;
}

/* Social Media Links */
.social-linksc {
    margin: 20px 0;
}

.social-linksc h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.social-linksc a {
    font-size: 24px;
    color: #000000;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-linksc a:hover {
    color: #333;
    transform: scale(1.2);
}

/* Contact Form */
.contact-formc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
}

.contact-formc h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.contact-formc input,
.contact-formc textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-formc input:focus,
.contact-formc textarea:focus {
    border-color: #000000;
    outline: none;
}

/* Submit Button */
.contact-formc button {
    padding: 12px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-formc button:hover {
    background:#333;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-boxc {
        width: 100%;
    }

    .contact-formc {
        width: 100%;
    }
}
